Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified.
型宣言子や型宣言キーワードが指定されていない変数に対して、変数名に応じて適用するデフォルトの変数型を設定します。
Defxxx Characterrange1[, Characterrange2[,...]]
Defxxx Characterrange1[, Characterrange2[,...]]
Characterrange: Letters that specify the range of variables that you want to set a default data type for.
Characterrange: デフォルトのデータ型の設定対象である変数の範囲を指定する文字。
xxx: Keyword that defines the default variable type:
xxx: デフォルトの変数型を定義するキーワード。
Keyword: Default variable type
Keyword: デフォルトの変数型
DefInt: Integer
DefInt: 整数
REM Prefix definitions for variable types
REM 変数型のプレフィックスの定義
DefBool b
DefBool b
DefDate t
DefDate t
DefDbL d
DefDbL d
DefInt i
DefInt i
DefLng l
DefLng l
DefObj o
DefObj o
DefVar v
DefVar v
Sub ExampleDefInt
Sub ExampleDefInt
iCount=200 REM iCount is an implicit integer variable
iCount=200 REM ここで iCount は整数変数として解釈されます
end sub
end sub